JavaScript Frameworks for Modern Web Development by Sufyan bin Uzayr & Nicholas Cloud & Tim Ambler

JavaScript Frameworks for Modern Web Development by Sufyan bin Uzayr & Nicholas Cloud & Tim Ambler

Author:Sufyan bin Uzayr & Nicholas Cloud & Tim Ambler
Language: eng
Format: epub
ISBN: 9781484249956
Publisher: Apress


Dust provides built-in support for conditionally rendering content, based on whether a simple truth test is passed. The template shown in Listing 8-25 demonstrates this concept by rendering the text “Yes” or “No” based on whether each country’s english property references a “truthy” value.// Template

{#countries}

<tr>

<td>{name}</td>

<td>{?english}Yes{:else}No{/english}</td>

{!

The opposite logic can be applied as shown below:

<td>{^english}No{:else}Yes{/english}</td>

!}

</tr>

{/countries}



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.